home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / livecd.squashfs / usr / lib / python2.4 / __future__.pyc (.txt) < prev    next >
Python Compiled Bytecode  |  2005-10-18  |  3KB  |  94 lines

  1. # Source Generated with Decompyle++
  2. # File: in.pyc (Python 2.4)
  3.  
  4. '''Record of phased-in incompatible language changes.
  5.  
  6. Each line is of the form:
  7.  
  8.     FeatureName = "_Feature(" OptionalRelease "," MandatoryRelease ","
  9.                               CompilerFlag ")"
  10.  
  11. where, normally, OptionalRelease < MandatoryRelease, and both are 5-tuples
  12. of the same form as sys.version_info:
  13.  
  14.     (PY_MAJOR_VERSION, # the 2 in 2.1.0a3; an int
  15.      PY_MINOR_VERSION, # the 1; an int
  16.      PY_MICRO_VERSION, # the 0; an int
  17.      PY_RELEASE_LEVEL, # "alpha", "beta", "candidate" or "final"; string
  18.      PY_RELEASE_SERIAL # the 3; an int
  19.     )
  20.  
  21. OptionalRelease records the first release in which
  22.  
  23.     from __future__ import FeatureName
  24.  
  25. was accepted.
  26.  
  27. In the case of MandatoryReleases that have not yet occurred,
  28. MandatoryRelease predicts the release in which the feature will become part
  29. of the language.
  30.  
  31. Else MandatoryRelease records when the feature became part of the language;
  32. in releases at or after that, modules no longer need
  33.  
  34.     from __future__ import FeatureName
  35.  
  36. to use the feature in question, but may continue to use such imports.
  37.  
  38. MandatoryRelease may also be None, meaning that a planned feature got
  39. dropped.
  40.  
  41. Instances of class _Feature have two corresponding methods,
  42. .getOptionalRelease() and .getMandatoryRelease().
  43.  
  44. CompilerFlag is the (bitfield) flag that should be passed in the fourth
  45. argument to the builtin function compile() to enable the feature in
  46. dynamically compiled code.  This flag is stored in the .compiler_flag
  47. attribute on _Future instances.  These values must match the appropriate
  48. #defines of CO_xxx flags in Include/compile.h.
  49.  
  50. No feature line is ever to be deleted from this file.
  51. '''
  52. all_feature_names = [
  53.     'nested_scopes',
  54.     'generators',
  55.     'division']
  56. __all__ = [
  57.     'all_feature_names'] + all_feature_names
  58. CO_NESTED = 16
  59. CO_GENERATOR_ALLOWED = 4096
  60. CO_FUTURE_DIVISION = 8192
  61.  
  62. class _Feature:
  63.     
  64.     def __init__(self, optionalRelease, mandatoryRelease, compiler_flag):
  65.         self.optional = optionalRelease
  66.         self.mandatory = mandatoryRelease
  67.         self.compiler_flag = compiler_flag
  68.  
  69.     
  70.     def getOptionalRelease(self):
  71.         '''Return first release in which this feature was recognized.
  72.  
  73.         This is a 5-tuple, of the same form as sys.version_info.
  74.         '''
  75.         return self.optional
  76.  
  77.     
  78.     def getMandatoryRelease(self):
  79.         '''Return release in which this feature will become mandatory.
  80.  
  81.         This is a 5-tuple, of the same form as sys.version_info, or, if
  82.         the feature was dropped, is None.
  83.         '''
  84.         return self.mandatory
  85.  
  86.     
  87.     def __repr__(self):
  88.         return '_Feature' + repr((self.optional, self.mandatory, self.compiler_flag))
  89.  
  90.  
  91. nested_scopes = _Feature((2, 1, 0, 'beta', 1), (2, 2, 0, 'alpha', 0), CO_NESTED)
  92. generators = _Feature((2, 2, 0, 'alpha', 1), (2, 3, 0, 'final', 0), CO_GENERATOR_ALLOWED)
  93. division = _Feature((2, 2, 0, 'alpha', 2), (3, 0, 0, 'alpha', 0), CO_FUTURE_DIVISION)
  94.